home *** CD-ROM | disk | FTP | other *** search
- /*
- cvhow.h
-
- "How-does-it-work" window
-
- C++/Views 2.0 Demo
- Copyright (c) 1992, by Liant Software Corp.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #ifndef cvhow_h
- #define cvhow_h
- #include "dialog.h"
- #include "str.h"
-
- class VEditBox;
- class VButton;
- class VPushButton;
- class VFont;
-
- class HowView : public VDialog {
- private:
- VString overviewName;
- VString sourceName;
- VEditBox *msgBox;
- VFont *sourceFont;
- VFont *overviewFont;
-
- VPushButton *overbttn;
- VPushButton *srcbttn;
-
- boolean overviewBtn(VButton *b);
- boolean sourceBtn(VButton *b);
- boolean aboutBtn(VButton *b);
-
- public:
- HowView(VWindow *, char *tpc, char *src);
- HowView();
- ~HowView();
-
- VClass *iam();
- boolean free();
- };
-
- extern VClass *HowViewCls;
- #endif /* cvhow_h */
-